home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 15
/
Aminet 15 - Nov 1996.iso
/
Aminet
/
dev
/
lang
/
FPL_v147.lha
/
fpl
/
funclib
/
funclib.h
< prev
next >
Wrap
Text File
|
1994-04-08
|
570b
|
28 lines
/*
* Here are all funclib structures, defines, macros and return codes.
*/
typedef enum {
FUNCLIB_OK,
/* The funclib execution (start/close) went OK */
FUNCLIB_PARAMETER,
/* parameter error when the funclib was called */
FUNCLIB_INTERNAL,
/* some kind of internal, undefined error! */
FUNCLIB_RESOURCE,
/* failed getting a system resource */
FUNCLIB_MEMORY,
/* failed getting enough memory from the system */
FUNCLIB_LOAD,
/* failed loading the funclib */
FUNCLIB_VERSION
/* the requested funclib version wasn't found */
} FuncRet;